* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body, html {
    margin: 0;
    padding: 0;
    color: #000000;
    background-color: rgb(255, 255, 255);
    overflow-x: hidden;
    list-style: none;
    z-index: 1;
}

html::-webkit-scrollbar {
    display: none; /* For Chrome, Edge, and Safari */
}

/*navbar-new*/

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: #ffffff;
    margin: 4px 0;
    transition: 0.4s;
    color: #000000;
}

nav{
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-weight: 200;
    font-size: 1.3rem;
    position: fixed;
    top: 0;
    transition: top 0.3s;
  z-index: 99;
  width: 100%;
  background: #131313;
  border-bottom: #E18A07 3px solid;

}
nav .wrapper{
  position: relative;
  max-width: 100%;
  padding: 0 30px;
  height: 11vh;
  line-height: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wrapper .logo img{
    width: fit-content;
    height: 15vh;
}

.wrapper .nav-links{
  display: flex;
}
.nav-links li{
  list-style: none;
}

.launch-button-top{
    padding: 0 3vh;
}

nav input{
    display: none;
}

.launch-button{
    z-index: 1500;
    color: rgb(105, 105, 105);
    border: #E18A07 solid 3px;
    transition: all 0.3s ease;
}

.launch-button:hover{
    z-index: 1500;
    color: #ffffff;
    border: #E18A07 solid 3px;
}

.nav-links li a{
  color: #ffffff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 200;
  padding: 9px 20px;
  transition: all 0.3s ease;
}
.nav-links li a:hover{
  background: #3A3B3C;
}
.nav-links .mobile-item{
  display: none;
}

.fa fa-bars{
    color: #ffffff;
    height: 30px;
    width: 30px;
}

.nav-links .drop-menu{
  position: absolute;
  background: #242526;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
  transition: opacity 0.3s ease, visibility 0.3s ease, top 0.3s ease;
}

.nav-links li:hover .drop-menu{
  top: 70px;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.nav-links .drop-menu{
  transition-delay: 0.7s;
}

.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}

.wrapper .btn{
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 950px) {
   nav .wrapper{
        z-index: 100;
        padding: 0;
        height: 11vh;
    }

  .wrapper .logo img{
      height: 11vh;
      width: auto;
  }

  .wrapper .btn{
    display: block;
    height: 50px;
    width: 50px;
    align-content: center;
  }

  .fas fa-bars{
    width: 30px;
    height: 30px;
  }

  .fas fa-times{
    width: 30px;
    height: 30px;
  }

  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #242526;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }

  #showDrop:checked ~ .drop-menu,
  #showDropProd:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
 
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }

}

/*hero*/

.hero {
    height: 100vh;
    background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url('../img/hero-website.webp') no-repeat center center/cover;
    background-size: cover;
    background-blend-mode: darken;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding-top: 14vh;
}

.hero-content {
    width: 100%;
    padding: 10vb;
    align-items: center;
}

   
   .hero h2 {
       font-family: 'From the Stars W01 Regular', sans-serif;
       font-size: 5.5rem;
       text-align: center;
       font-weight: lighter;
       line-height: 1.5;
       padding: 5%;
       margin-bottom: 40px;
       color: #ffffff;
   }

.hero p {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 18px;
    margin-bottom: 35px;
    color: #ffffff;
}

@media (max-width: 768px) {

    .hero{
        height: 75vh;
        padding-top: 15%;
    }

    .hero-content{
        max-width: 95%;
        padding: 0;
    }

    .hero h2 {
        font-size: 2.3rem;
    }

    .hero p {
        max-width: 95%;
        font-size: 18px;
    }
}

/*hero2*/

.hero2 {
    height: 100vh;
    background: url('../img/hero2.webp') no-repeat center center/cover;
    background-size: cover;
    background-blend-mode: darken;
    display: flex;
    align-content: center;
    text-align: left;
    padding: 14%;
}

.hero2-content {
    width: 125vb;
    height: 100%;
    padding:0% 5%;
    padding-top: 20%;
    align-content: end;
}

.hero2 h1 {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 1.7rem;
    font-weight: 200;
    color: #4b4b4b;
}

   
   .hero2 h2 {
       font-family: 'From the Stars W01 Regular', sans-serif;
       font-size: 3rem;
       font-weight: 200;
       line-height: 1.5;
       background-color: #E18A07;
  
   
       background-image: linear-gradient(60deg, #E18A07,  rgb(105, 105, 105), #E18A07, rgb(105, 105, 105), #E18A07);
       
       background-size: 100%;
       background-repeat: repeat;
     
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent; 
       -moz-background-clip: text;
       -moz-text-fill-color: transparent;
   }

   .gln-btn-top{
    padding: 4% 1%;
   }

   .gln-btn{
    color: rgb(105, 105, 105);
    text-decoration: none;
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 1.1rem;
    background-color: transparent;
    border: rgb(105, 105, 105) 2px solid;
    padding: 1% 3%;
   }

   @media (max-width: 768px) {
    .hero2{
        height: 55vh;
        padding-top: 0;
    }

    .hero2-content{
        max-width: 95%;
        padding: 0 0;
        padding-top: 0;
    }

    .hero2 h1 {
        font-size: 1.1rem;
    }

    .hero2 h2 {
        font-size: 2.1rem;
        padding-bottom: 0;
    }

    .gln-btn{
        font-size: 0.8rem;
    }
}

@media (max-width: 1023px) and (min-width: 769px) {
  .hero2-content{
    padding-top: 0;
  }

  .hero3-content{
    padding-top: 0;
  }

  .hero4-content{
    padding-top: 0;
  }
}

/*hero3*/

.hero3 {
    height: 100vh;
    background: url('../img/hero3.webp') no-repeat center center/cover;
    background-size: cover;
    background-blend-mode: darken;
    display: flex;
    justify-content: flex-end;
    text-align: right;
    padding: 14%;
}

.hero3-content {
    width: 125vb;
    height: 100%;
    padding:0% 5%;
    padding-top: 20%;
    align-content: end;
}

.hero3 h1 {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 1.7rem;
    font-weight: 200;
    color: #000000;
}

   
   .hero3 h2 {
       font-family: 'From the Stars W01 Regular', sans-serif;
       font-size: 3rem;
       font-weight: 200;
       line-height: 1.5;
       background-color: #E18A07;
  
   
       background-image: linear-gradient(60deg, #E18A07,  rgb(105, 105, 105), #E18A07, rgb(105, 105, 105), #E18A07);
       
       background-size: 100%;
       background-repeat: repeat;
     
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent; 
       -moz-background-clip: text;
       -moz-text-fill-color: transparent;
   }

   .gln-btn-top{
    padding: 4% 1%;
   }

   .gln-btn{
    color: rgb(3, 3, 3);
    text-decoration: none;
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 1.1rem;
    background-color: transparent;
    border: rgb(105, 105, 105) 2px solid;
    padding: 1% 3%;
    transition: all 0.3s;
   }

   .gln-btn:hover{
    border: #E18A07 2px solid;
    color: #ffffff;
    font-size: 1.2rem;
   }

   @media (max-width: 768px) {
    .hero3{
        height: 55vh;
        padding-top: 0;
    }

    .hero3-content{
        max-width: 95%;
        padding-top: 0%;
    }

    .hero3 h1 {
        color: #000000;
        font-size: 1.1rem;
    }

    .hero3 h2 {

        font-size: 2.1rem;
        padding-bottom: 0;
    }

    .gln-btn{
        color: white;
        font-size: 0.8rem;
    }

}

/*hero2*/
.hero4 {
    height: 100vh;
    background: url('../img/footer.webp') no-repeat calc(100% - 35%) center  / cover;
    background-size: cover;
    background-blend-mode: darken;
    display: flex;
    align-content: center;
    text-align: left;
    padding: 14%;
}

.hero4-content {
    width: 125vb;
    height: 100%;
    padding:0% 5%;
    padding-top: 20%;
    align-content: end;
}

.hero4 h1 {
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 1.7rem;
    font-weight: 200;
    color: #ffffff;
}

   
   .hero4 h2 {
       font-family: 'From the Stars W01 Regular', sans-serif;
       font-size: 3rem;
       font-weight: 200;
       line-height: 1.5;
       background-color: #E18A07;
  
   
       background-image: linear-gradient(60deg, #E18A07,  rgb(255, 255, 255), #E18A07, rgb(255, 255, 255), #E18A07);
       
       background-size: 100%;
       background-repeat: repeat;
     
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent; 
       -moz-background-clip: text;
       -moz-text-fill-color: transparent;
   }

   .gln-btn-top{
    padding: 4% 1%;
   }

   .hero4-btn{
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 1.1rem;
    background-color: transparent;
    border: rgb(255, 255, 255) 2px solid;
    padding: 1% 3%;
    transition: all 0.3s ease;
   }

   .hero4-btn:hover{
    font-size: 1.2rem;
    border: #E18A07 2px solid;
   }
   

   @media (max-width: 768px) {
    .hero4{
        height: 55vh;
        padding-top: 0;
    }

    .hero4-content{
        max-width: 95%;
        padding-top: 0%;
    }

    .hero4 h1 {
        font-size: 1.1rem;
    }

    .hero4 h2 {
        font-size: 2.1rem;
        padding-bottom: 0;
    }

    .hero4-btn{
        font-size: 0.8rem;
    }
}



/*services container card*/

.services-container {
    font-family: 'Roboto', sans-serif;
    background-color: white;
    color: black;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 95%;
}

.service-card {
    background-color: transparent;
    padding: 20px;
    border-radius: 4px;
    text-align: justify;
    border: 2px solid rgb(105, 105, 105);
    position: relative; /*new*/
    overflow: hidden;
    transition: all 0.5s ease;
}

.service-card:hover {
    color: #000000;
    font-size: 1.35em;
    background-color: rgb(255, 255, 255);
    transition: all 0.5s ease;
    transform: scale(1.05);
}

.service-card h3 {
    color: #E18A07;
    margin-top: 0;
    font-weight: 200;
   margin-bottom: 20px;
   font-size: 24px;
   font-family: 'From the Stars W01 Regular', sans-serif;
}

.service-card p {
    margin-bottom: 0;
    font-size: 16px;
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/*fly with baas*/
.fly-with-baas {
    position: relative;
    width: 100%;
    padding: 3% 5%;
}

.fly-with-baas .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(105, 105, 105, 1), rgba(105, 105, 105, 01), rgba(105, 105, 105, 0.9), rgba(105, 105, 105, 0.8), rgba(105, 105, 105, 0.7), rgba(105, 105, 105, 0.5), rgba(105, 105, 105, 0.3), rgba(105, 105, 105, 0.1), rgba(105, 105, 105, 0), rgba(105, 105, 105, 0), rgba(105, 105, 105, 0), rgba(105, 105, 105, 0));
    z-index: 0;
}

.fly-with-baas-orbital-content{
    background: url('../img/fly-with-baas-orbital.webp') center/cover no-repeat;
}

.fly-with-baas-suborbital-content{
    background: url('../img/fly-with-baas-desktop.webp') center/cover no-repeat;
}

.fly-with-baas-content h1{
    color: #E18A07;
}

.fly-with-baas-content {
    width: 100%;
    height: 100%;
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: flex-end;
    padding: 10%;

}

@media (max-height: 650px) {

    .fly-with-baas-content {
        justify-content: center;
    }    
}

.fly-with-baas-content h1 {
    font-family: 'From the Stars W01 Regular', sans-serif;
    font-size: 3.6rem;
    font-weight: 200;
    margin-bottom: 3%;
    position: relative;
    z-index: 2;
}

.fly-with-baas-content p {
    font-size: 1.3rem;
    color: #ffffff;
    font-family: 'Atkinson Hyperlegible', Arial, sans-serif;
    width: 50%;
    margin-bottom: 3%;
    position: relative;
    z-index: 3;
}

.fly-with-baas-content .button {
    display: inline-block;
    padding: 10px 20px;
    max-width: fit-content;
    font-family: 'Atkinson Hyperlegible', Arial, sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    text-decoration: none;
    background-color: transparent;
    cursor: pointer;
    border: #E18A07 2px solid;
    position: relative;
    transition: all 0.3s ease;
    position: relative;
    z-index: 4;
}

.fly-with-baas-content .button:hover {
    background-color: #E18A07;
}

@media (max-width: 768px) {

  .fly-with-baas-suborbital-content{
    background: url('../img/fly-with-baas.webp') center/cover no-repeat;
  }

  .fly-with-baas-content h1{
    font-size: 1.9rem;
    margin-bottom: 9%;
  }

    .fly-with-baas-content p{
        font-size: 0.9rem;
        width: 100%;
    }

    .fly-with-baas-content .button{
        font-size: 0.8rem;
    }
}

/* service type */

.service-type{
  padding: 5% 2%;
}

.container-service{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  gap: 2%;
}

.container-sub-service{
  width: 30%;
  background-color: #efefef;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2%;
  border-radius: 2%;
}

.container-sub-service img{
  width: 100%;
  height: auto;
  z-index: 1;
  margin-bottom: 5%;
}

.container-sub-service h2{
  font-size: 1.5rem;
  font-weight: 200;
  margin-bottom: 5%;
  color: #000000;
}

.container-sub-service p{
  font-family: 'Atkinson Hyperlegible', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #2e2e2e;
}

@media (max-width: 768px){
  .container-service{
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  align-items: center;
  gap: 5%;
}

.container-sub-service{
  width: 100%;
  height: fit-content;
  padding: 2% 10%;
  margin-bottom: 4%;
}

.container-sub-service img{
  width: 70%;
}

.container-sub-service p{
  font-size: 1.2rem;
}
}

/* manual contact */
.manual-contact{
  width: fit-content;
  margin: 0 auto;
  padding: 1%;
  justify-items: center;
  align-items: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-content: center;
}

.vertical-half-rule {
  width: 0.16vw; 
  height: 20vh;
  border: 0;
  background-image: linear-gradient(to bottom, rgba(105, 105, 105, 1), #E18A07, rgba(105, 105, 105, 1));
  margin: 0;
}

.manual-contact p {
  font-size: 1.1rem;
  color: #000000;
  font-family: 'Atkinson Hyperlegible', Arial, sans-serif;
  width: 90%;
  margin-top: 4%;
  margin-bottom: 3%;
  position: relative;
  z-index: 3;
}

.manual-contact p u{
  color: #E18A07;
}

.manual-contact .button {
  display: inline-block;
  padding: 10px 20px;
  max-width: fit-content;
  font-family: 'Atkinson Hyperlegible', Arial, sans-serif;
  font-size: 1.1rem;
  color: #000000;
  text-decoration: none;
  background-color: transparent;
  cursor: pointer;
  border: #E18A07 2px solid;
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 20%;
}

.manual-contact .button:hover {
  background-color: #E18A07;
  color: #ffffff;
}

@media (max-width: 768px){
  .vertical-half-rule{
    width: 1px;
    height: 15vh;
  }

  .manual-contact p{
    font-size: 0.7rem;
    margin-top: 8%;
    margin-bottom: 4%;
  }

  .manual-contact .button{
    margin-bottom: 30%;
  }
}

/*footer-new*/
footer {
    width: 100%;
    height: 100%; 
   background-color: transparent;
   font-family: 'Atkinson Hyperlegible', sans-serif;
   color: white;
   background-position: center center;
   background-attachment: relative;
   background-repeat: no-repeat; 
   background-size: cover;
   background-image: url(../img/footer-all.png);
 }

 .footer-main{
    height: 70vh;
 }

 .footer-content {
    height: 100%;
    background-color: transparent;
   display: flex;
   justify-content: space-around;
   align-items: center;
   flex-wrap: wrap;
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 0%;
 }
 
 .footer-left, .footer-right, .footer-center {
   flex: 1;
   text-align: center;
   padding: 0 2%;
   height: 100%;
   align-content: center;
 }
 
 .footer-left{
    display: flex;
    flex-direction: column;
    justify-content: center;
 }
  
  .footer-left a{
    color: rgb(100, 100, 100);
    font-family: 'Atkinson Hyperlegible', sans-serif;
    font-size: 0.8em;
    text-decoration: none;
  }
  
  .footer-left a:hover{
    text-decoration: underline;
  }
 
 .footer-logo {
   height: 16vh;
   width: auto;
   margin-bottom: 0%;
 }
 
 .footer-copyright{
    font-size: 0.8em;
    margin-top: 5%;
    margin-bottom: 5%;
 }

 .vertical-rule {
    width: 1px; 
    height: 70%;
    border: 0;
    background-image: linear-gradient(to bottom, rgba(105, 105, 105, 1), #E18A07, rgba(105, 105, 105, 1));
    margin: 0;
  }
  

 .social-profiles{
    justify-items: center;
    height: 10%;
 }

 .footer-center-data{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 5% 0;
 }

 .footer-center-data-left{
    text-align: right;
 }

 .footer-center-data-right{
    text-align: left;
 }

 .footer-center-data h5{
    font-size: 1.1rem;
    font-family: 'From the Stars W01 Regular', sans-serif;
    font-weight: 200;
    margin-top: 0%;
    margin-bottom: 20%;
    color: rgb(130, 130, 130);
 }

 .footer-center-data p{
    font-size: 0.9rem;
    font-family: 'Atkinson Hyperlegible', sans-serif;
    margin-block-end: 15%;
 }
 
 .social-icon {
    height: 24px;
    width: auto;
    margin: 0 5%;
    padding-bottom: 0;
  }

 .footer-right {
   text-align: right;
   justify-items: right;
   background-color: rgba(105, 105, 105, 0);
 }

 .footer-right-data{
    font-size: 0.9rem;
    width: 70%;
    margin-right: 0%;
    align-self: center;
 }

 .footer-address1{
    font-size: 1.2em;
    font-family: 'From the Stars W01 Regular', sans-serif;
    font-weight: 200;
    padding-bottom: 10%;
    color: rgb(130, 130, 130);
 }

 .footer-address2{
    font-size: 1.1em;
    font-family: 'Atkinson Hyperlegible', sans-serif;
    padding-bottom: 10%;
 }

.footer-right a, .footer-center-data a{
    color: white;
    text-decoration: none;
}

.footer-right a:hover, .footer-center-data a:hover{
    text-decoration: underline;
}
 
.footer-content hr{
    border: 0;
       height: 1px;
       background-image: linear-gradient(to right, rgba(105, 105, 105, 1), #E18A07, rgba(105, 105, 105, 1));
       width: 60%;
       display: none;
   }

   @media (max-width: 768px) and ( min-width: 401px) {

    .footer-content {
     flex-direction: column;
     justify-items: center;
     flex-wrap: nowrap;
    }
    
    .footer-content hr{
     border: 0;
        height: 1px;
        background-image: linear-gradient(to right, rgba(105, 105, 105, 1), #E18A07, rgba(105, 105, 105, 1));
        width: 70%;
        display: block;
        z-index: 1;
    }
 
    .footer-center, .footer-left, .footer-right {
     padding-top: 0%; 
     margin-bottom: 0px;
     height: fit-content;
    }
  
    .footer-left{
     flex: 0.5;
     flex-direction: row;
     justify-content: space-around;
     width: 100%;
     height: 30%;
     text-align: right;
     align-items: center;
    }
 
    .footer-left a{
     font-size: 0.6rem;
    }
 
    .footer-left-text{
     display: flex;
     flex-direction: column;
     justify-content: center;
    }
 
    .footer-left-text p{
     margin: 0 0;
    }
 
    .footer-logo{
     height: 10vh;
     width: auto;
    }
 
    .footer-copyright{
     font-size: 0.5em;
     padding: 0%;
    }
 
    .vertical-rule{
     display: none;
    }
 
    .social-profiles{
     height: 15%;
    }
 
    .social-icon{
     margin: 0 4%;
     padding-bottom: 1%;
     padding-top: 0;
    }
 
    .footer-center-data{
     display: flex;
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
     padding: 0%;
     width: 30vh;
  }
 
    .footer-right{
     height: 100%;
    }
 
    .footer-right {
     text-align: center;
     justify-items: center;
    }

    .footer-address1{
     padding-bottom: 8%;
  }
 
  .footer-address2{
     padding-bottom: 8%;
  }
 
  }
 
  @media (max-width: 400px) and (min-height: 525px){
 
     .footer-main{
         height: 100vh;
     }
 
 
     .footer-content {
         flex-direction: column;
         justify-items: center;
         flex-wrap: nowrap;
        }
        
        .footer-content hr{
         border: 0;
            height: 1px;
            background-image: linear-gradient(to right, rgba(105, 105, 105, 1), #E18A07, rgba(105, 105, 105, 1));
            width: 70%;
            display: block;
            z-index: 1;
        }
     
        .footer-center, .footer-left, .footer-right {
         padding-top: 0%; 
         margin-bottom: 0px;
         height: fit-content;
        }
      
        .footer-left{
         flex: 0.5;
         flex-direction: row;
         justify-content: space-around;
         width: 100%;
         height: 30%;
         text-align: right;
         align-items: center;
        }
     
        .footer-left a{
         font-size: 0.6rem;
        }
     
        .footer-left-text{
         display: flex;
         flex-direction: column;
         justify-content: center;
        }
     
        .footer-logo{
         height: 13vh;
         width: auto;
        }
     
        .footer-left-text p{
         margin: 0 0;
        }
 
        .footer-copyright{
         font-size: 0.5em;
         padding: 0 0;
        }
     
        .vertical-rule{
         display: none;
        }
     
        .social-profiles{
         height: 15%;
        }
 
        .social-icon{
         margin: 0 4%;
         padding-bottom: 2%;
         padding-top: 0%;
        }
     
        .footer-center-data{
         display: flex;
         flex-direction: row;
         justify-content: space-between;
         align-items: center;
         padding: 0%;
         width: 40vh;
      }
     
        .footer-right{
         height: 100%;
        }
     
        .footer-right {
         text-align: center;
         justify-items: center;
        }
     
        .footer-address1{
         padding-bottom: 8%;
      }
     
      .footer-address2{
         padding-bottom: 8%;
 
      }
  }
 
  @media (max-width: 400px) and (min-height: 401px) and (max-height: 525px){
 
   .footer-main{
       height: 100vh;
   }
 
 
   .footer-content {
       flex-direction: column;
       justify-items: center;
       flex-wrap: nowrap;
      }
      
      .footer-content hr{
       border: 0;
          height: 1px;
          background-image: linear-gradient(to right, rgba(105, 105, 105, 1), #E18A07, rgba(105, 105, 105, 1));
          width: 70%;
          display: block;
          z-index: 1;
      }
   
      .footer-center, .footer-left, .footer-right {
       padding-top: 0%; 
       margin-bottom: 0px;
       height: fit-content;
      }
    
      .footer-left{
       flex: 0.5;
       flex-direction: row;
       justify-content: space-around;
       width: 100%;
       height: 30%;
       text-align: right;
       align-items: center;
      }
   
      .footer-left a{
       font-size: 0.6rem;
      }
   
      .footer-left-text{
       display: flex;
       flex-direction: column;
       justify-content: center;
      }
   
      .footer-logo{
       height: 13vh;
       width: auto;
      }
   
      .footer-left-text p{
       margin: 0 0;
      }
 
      .footer-copyright{
       font-size: 0.5em;
       padding: 0 0;
      }
   
      .vertical-rule{
       display: none;
      }
   
      .social-profiles{
       height: 15%;
      }
 
      .social-icon{
       margin: 0 4%;
       padding-bottom: 2%;
       padding-top: 0%;
      }
   
      .footer-center-data{
       display: flex;
       flex-direction: row;
       justify-content: space-between;
       align-items: center;
       padding: 0%;
       width: 60vh;
    }
   
      .footer-right{
       height: 100%;
      }
   
      .footer-right {
       text-align: center;
       justify-items: center;
      }
   
      .footer-address1{
       padding-bottom: 8%;
    }
   
    .footer-address2{
       padding-bottom: 8%;
 
    }
 }
 
  @media (max-width: 400px) and (max-height: 400px) {
 
   .footer-main{
       height: 130vh;
   }
 
 
   .footer-content {
       flex-direction: column;
       justify-items: center;
       flex-wrap: nowrap;
      }
      
      .footer-content hr{
       border: 0;
          height: 1px;
          background-image: linear-gradient(to right, rgba(105, 105, 105, 1), #E18A07, rgba(105, 105, 105, 1));
          width: 70%;
          display: block;
          z-index: 1;
      }
   
      .footer-center, .footer-left, .footer-right {
       padding-top: 0%; 
       margin-bottom: 0px;
       height: fit-content;
      }
    
      .footer-left{
       flex: 0.5;
       flex-direction: row;
       justify-content: space-around;
       width: 100%;
       height: 30%;
       text-align: right;
       align-items: center;
      }
   
      .footer-left a{
       font-size: 0.6rem;
      }
   
      .footer-left-text{
       display: flex;
       flex-direction: column;
       justify-content: center;
      }
   
      .footer-logo{
       height: 13vh;
       width: auto;
      }
   
      .footer-left-text p{
       margin: 0 0;
      }
 
      .footer-copyright{
       font-size: 0.5em;
       padding: 0 0;
      }
   
      .vertical-rule{
       display: none;
      }
   
      .social-profiles{
       height: 15%;
      }
 
      .social-icon{
       margin: 0 4%;
       padding-bottom: 2%;
       padding-top: 0%;
      }
   
      .footer-center-data{
       display: flex;
       flex-direction: row;
       justify-content: space-between;
       align-items: center;
       padding: 0%;
       width: 60vh;
    }
   
      .footer-right{
       height: 100%;
      }
   
      .footer-right {
       text-align: center;
       justify-items: center;
      }
   
      .footer-address1{
       padding-bottom: 8%;
    }
   
    .footer-address2{
       padding-bottom: 8%;
 
    }
 }
 
  @media (max-width: 768px) and ( min-width: 401px) and (max-height: 705px) {
 
   .footer-main{
     height: 135vh;
 }
 
 
 .footer-content {
     flex-direction: column;
     justify-items: center;
     flex-wrap: nowrap;
    }
    
    .footer-content hr{
     border: 0;
        height: 1px;
        background-image: linear-gradient(to right, rgba(105, 105, 105, 1), #E18A07, rgba(105, 105, 105, 1));
        width: 70%;
        display: block;
        z-index: 1;
    }
 
    .footer-center, .footer-left, .footer-right {
     padding-top: 0%; 
     margin-bottom: 0px;
     height: fit-content;
    }
  
    .footer-left{
     flex: 0.5;
     flex-direction: row;
     justify-content: space-around;
     width: 100%;
     height: 30%;
     text-align: right;
     align-items: center;
    }
 
    .footer-left a{
     font-size: 0.6rem;
    }
 
    .footer-left-text{
     display: flex;
     flex-direction: column;
     justify-content: center;
    }
 
    .footer-logo{
     height: 13vh;
     width: auto;
    }
 
    .footer-left-text p{
     margin: 0 0;
    }
 
    .footer-copyright{
     font-size: 0.5em;
     padding: 0 0;
    }
 
    .vertical-rule{
     display: none;
    }
 
    .social-profiles{
     height: 15%;
    }
 
    .social-icon{
     margin: 0 4%;
     padding-bottom: 2%;
     padding-top: 0%;
    }
 
    .footer-center-data{
     display: flex;
     flex-direction: row;
     justify-content: space-between;
     align-items: center;
     padding: 0%;
     width: 60vh;
  }
 
    .footer-right{
     height: 100%;
    }
 
    .footer-right {
     text-align: center;
     justify-items: center;
    }

    .footer-address1{
     padding-bottom: 8%;
  }
 
  .footer-address2{
     padding-bottom: 8%;
 
  }
 }

/*all purpose borders*/

.horizontal-rule{
    height: 0.3vh; 
    width: 100%;
    border: 0;
    background-image: linear-gradient(to right, rgba(105, 105, 105, 1), #E18A07, rgba(105, 105, 105, 1));
    margin: 0;
  }

 .footer-border{
    display: flex;
    flex-direction: row;
 }

 .footer-border-left {
    width: 100%;
    height: 0.5vh;
    background-color: #E18A07;
    margin: 0;
 }

 .footer-border-right {
    width: 100%;
    height: 0.5vh;
    background-color: rgb(105, 105, 105);
    margin: 0;
 }